% ' 【柯南图片管理系统】 '**************************************************************** ' 版本:1.0版 ' 程序制作:柯南.Net ' 作者住址:山东省威海市环翠区望岛 ' 邮政编码:264200 ' 电子邮件:zhimengcn@163.com ' 个人主页:http://kenannet.yeah.net ' OICQ : 94165910 ' UC :15948091 '**************************************************************************** id=Request.Querystring("id") If id ="" then Response.Write("") end if if instr(id,"'") or instr(id,"select") or instr(id,"in") or instr(id,"from") or instr(id,"len") or instr(id,"where") or instr(id,"or") or instr(id,"and") then Response.Write("") Response.End end if '在这里过滤TMD的不良字符 conn.execute("update imgbook set click=click+1 where ID=" & id) sql="select * from imgbook where ID="&id set rs=server.createobject("adodb.recordset") rs.open sql,conn,1,1 if rs.eof then Response.Write("对不起。没有此编号的图片!!!") Response.end end if %>
![]() |
<%=rs("title")%> On passes on date : <%=rs("updatetime")%> This photograph skimd through <%=rs("click")%>Degree |
|
|
|
The photograph correlation illustrates : |
<%=ubbcode(rs("guestcontent"))%> |
<% rsclose() set rs1=server.CreateObject("Adodb.recordset") sql1="select ID from imgbook where ID="&Request.Querystring("id")-1 rs1.open sql1,conn,1,1 if not rs1.bof then Response.Write("First photograph ") end if rs1.close sql1="select ID from imgbook where ID="&Request.Querystring("id")+1 rs1.open sql1,conn,1,1 if not rs1.bof then Response.Write("Second photograph ") end if rs1.close set rs1=nothing %> |